home *** CD-ROM | disk | FTP | other *** search
/ Programming Windows 95 / Programming Windows 95.iso / code / CHAP12 / GADGETS.MAK < prev    next >
Encoding:
Text File  |  1996-01-01  |  811 b   |  28 lines

  1. #-----------------------
  2. # GADGETS.MAK make file
  3. #-----------------------
  4.  
  5. gadgets.exe : gadgets.obj notifdef.obj statbar.obj \
  6.               toolbar.obj tooltip.obj gadgets.res
  7.      $(LINKER) $(GUIFLAGS) -OUT:gadgets.exe gadgets.obj \
  8.      notifdef.obj statbar.obj toolbar.obj tooltip.obj \
  9.      gadgets.res $(GUILIBS)
  10.  
  11. gadgets.obj : gadgets.c comcthlp.h gadgets.h
  12.      $(CC) $(CFLAGS) gadgets.c
  13.  
  14. notifdef.obj : notifdef.c notifdef.h
  15.      $(CC) $(CFLAGS) notifdef.c
  16.  
  17. statbar.obj : statbar.c comcthlp.h gadgets.h
  18.      $(CC) $(CFLAGS) statbar.c
  19.  
  20. toolbar.obj : toolbar.c comcthlp.h gadgets.h notifdef.h
  21.      $(CC) $(CFLAGS) toolbar.c
  22.  
  23. tooltip.obj : tooltip.c comcthlp.h gadgets.h notifdef.h
  24.      $(CC) $(CFLAGS) tooltip.c
  25.  
  26. gadgets.res : gadgets.rc gadgets.ico
  27.      $(RC) $(RCVARS) gadgets.rc
  28.